from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

82752

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-01-09
closure-compiler-bin - 20260106
Ebuild name:

dev-lang/closure-compiler-bin-20260106

Description

JavaScript optimizing compiler

Added to portage

2026-01-09

image_processing - 1.14.0-r1
Ebuild name:

dev-ruby/image_processing-1.14.0-r1

Description

High-level image processing helper methods with libvips and Ima

Added to portage

2026-01-09

jj - 0.37.0
Ebuild name:

dev-vcs/jj-0.37.0

Description

Jujutsu - an experimental version control system

Added to portage

2026-01-09

krita - 6.0.0_alpha_pre20260108
Ebuild name:

media-gfx/krita-6.0.0_alpha_pre20260108

Description

Free digital painting application. Digital Painting, Creati

Added to portage

2026-01-09

org-static-blog - 9999
Ebuild name:

app-emacs/org-static-blog-9999

Description

Static site generator using Emacs's org-mode

Added to portage

2026-01-09

org-superstar-mode - 1.5.0
Ebuild name:

app-emacs/org-superstar-mode-1.5.0

Description

Prettify headings and plain lists in Org mode (use UTF8 bullets)

Added to portage

2026-01-09

pdf-tools - 1.3.0
Ebuild name:

app-emacs/pdf-tools-1.3.0

Description

Emacs Lisp support library for PDF documents

Added to portage

2026-01-09

solaar - 1.1.19
Ebuild name:

app-misc/solaar-1.1.19

Description

Linux Device Manager for Logitech Unifying Receivers and Paired Devices

Added to portage

2026-01-09

transient - 0.12.0
Ebuild name:

app-emacs/transient-0.12.0

Description

Transient commands abstraction for GNU Emacs

Added to portage

2026-01-09

with-editor - 3.4.8
Ebuild name:

app-emacs/with-editor-3.4.8

Description

Use the Emacsclient as the of child processes

Added to portage

2026-01-09

2026-01-08
age - 1.3.1
Ebuild name:

app-crypt/age-1.3.1

Description

A simple, modern and secure encryption tool (and Go library)

Added to portage

2026-01-08

akonadi - 25.12.1
Ebuild name:

kde-apps/akonadi-25.12.1

Description

Storage service for PIM data and libraries for PIM apps

Added to portage

2026-01-08

akonadi-calendar - 25.12.1
Ebuild name:

kde-apps/akonadi-calendar-25.12.1

Description

Library for akonadi calendar integration

Added to portage

2026-01-08

akonadi-calendar-tools-common - 25.12.1
Ebuild name:

kde-apps/akonadi-calendar-tools-common-25.12.1

Description

Added to portage

2026-01-08

akonadi-contacts - 25.12.1
Ebuild name:

kde-apps/akonadi-contacts-25.12.1

Description

Library for akonadi contact integration

Added to portage

2026-01-08

akonadi-import-wizard - 25.12.1
Ebuild name:

kde-apps/akonadi-import-wizard-25.12.1

Description

Assistant to import PIM data from other applications into Ak

Added to portage

2026-01-08

akonadi-mime - 25.12.1
Ebuild name:

kde-apps/akonadi-mime-25.12.1

Description

Library for akonadi mime types

Added to portage

2026-01-08

akonadi-search - 25.12.1
Ebuild name:

kde-apps/akonadi-search-25.12.1

Description

Libraries and daemons to implement searching in Akonadi

Added to portage

2026-01-08

akonadiconsole - 25.12.1
Ebuild name:

kde-apps/akonadiconsole-25.12.1

Description

Application for debugging Akonadi Resources

Added to portage

2026-01-08

akregator - 25.12.1
Ebuild name:

kde-apps/akregator-25.12.1

Description

News feed aggregator

Added to portage

2026-01-08

alligator - 25.12.1
Ebuild name:

net-news/alligator-25.12.1

Description

Convergent RSS/Atom feed reader for Plasma

Added to portage

2026-01-08

analitza - 25.12.1
Ebuild name:

kde-apps/analitza-25.12.1

Description

KDE library for mathematical features

Added to portage

2026-01-08

ark - 25.12.1
Ebuild name:

kde-apps/ark-25.12.1

Description

File archiver by KDE

Added to portage

2026-01-08

artikulate - 25.12.1
Ebuild name:

kde-apps/artikulate-25.12.1

Description

Language learning application that helps improving pronunciation skills

Added to portage

2026-01-08

aseprite - 1.3.13
Ebuild name:

dev-games/aseprite-1.3.13

Description

Animated sprite editor & pixel art tool

Added to portage

2026-01-08

audex - 25.12.1
Ebuild name:

media-sound/audex-25.12.1

Description

Tool for ripping compact discs

Added to portage

2026-01-08

audiocd-kio - 25.12.1
Ebuild name:

kde-apps/audiocd-kio-25.12.1

Description

KIO worker for accessing audio CDs

Added to portage

2026-01-08

awscli - 1.44.14
Ebuild name:

app-admin/awscli-1.44.14

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-08

baloo-widgets - 25.12.1
Ebuild name:

kde-apps/baloo-widgets-25.12.1

Description

Widget library for baloo

Added to portage

2026-01-08

blinken - 25.12.1
Ebuild name:

kde-apps/blinken-25.12.1

Description

Memory enhancement game based on KDE Frameworks

Added to portage

2026-01-08

bomber - 25.12.1
Ebuild name:

kde-apps/bomber-25.12.1

Description

Single player arcade bombing game

Added to portage

2026-01-08

boto3 - 1.42.24
Ebuild name:

dev-python/boto3-1.42.24

Description

The AWS SDK for Python

Added to portage

2026-01-08

botocore - 1.42.24
Ebuild name:

dev-python/botocore-1.42.24

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-08

bovo - 25.12.1
Ebuild name:

kde-apps/bovo-25.12.1

Description

Five-in-a-row Board Game

Added to portage

2026-01-08

calendarjanitor - 25.12.1
Ebuild name:

kde-apps/calendarjanitor-25.12.1

Description

Tool to scan calendar data for buggy instances

Added to portage

2026-01-08

calendarsupport - 25.12.1
Ebuild name:

kde-apps/calendarsupport-25.12.1

Description

Calendar support library

Added to portage

2026-01-08

calligra - 25.12.1
Ebuild name:

app-office/calligra-25.12.1

Description

KDE Office Suite

Added to portage

2026-01-08

cantor - 25.12.1
Ebuild name:

kde-apps/cantor-25.12.1

Description

Interface for doing mathematics and scientific computing

Added to portage

2026-01-08

celestia - 1.7.0_pre20241231-r1
Ebuild name:

sci-astronomy/celestia-1.7.0_pre20241231-r1

Description

OpenGL 3D space simulator

Added to portage

2026-01-08

colord-kde - 25.12.1
Ebuild name:

kde-misc/colord-kde-25.12.1

Description

Provides interfaces and session daemon to colord

Added to portage

2026-01-08

cri-o - 1.34.3
Ebuild name:

app-containers/cri-o-1.34.3

Description

OCI-based implementation of Kubernetes Container Runtime Interface

Added to portage

2026-01-08

curtail - 1.14.0
Ebuild name:

media-gfx/curtail-1.14.0

Description

Image compressor, supporting PNG, JPEG and WebP

Added to portage

2026-01-08

dist-kernel - 6.12.64
Ebuild name:

virtual/dist-kernel-6.12.64

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-01-08

dist-kernel - 6.18.4
Ebuild name:

virtual/dist-kernel-6.18.4

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-01-08

django-otp - 1.7.0
Ebuild name:

dev-python/django-otp-1.7.0

Description

Django framework adding two-factor authentication using one-time passwo

Added to portage

2026-01-08

dolphin - 25.12.1
Ebuild name:

kde-apps/dolphin-25.12.1

Description

Plasma filemanager focusing on usability

Added to portage

2026-01-08

dolphin-plugins-common - 25.12.1
Ebuild name:

kde-apps/dolphin-plugins-common-25.12.1

Description

Added to portage

2026-01-08

dolphin-plugins-dropbox - 25.12.1
Ebuild name:

kde-apps/dolphin-plugins-dropbox-25.12.1

Description

Dolphin plugin for Dropbox service integration

Added to portage

2026-01-08

dolphin-plugins-git - 25.12.1
Ebuild name:

kde-apps/dolphin-plugins-git-25.12.1

Description

Dolphin plugin for Git integration

Added to portage

2026-01-08

dolphin-plugins-makefileactions - 25.12.1
Ebuild name:

dev-build/dolphin-plugins-makefileactions-25.12.1

Description

Dolphin plugin for Makefile targets integration

Added to portage

2026-01-08

dolphin-plugins-mercurial - 25.12.1
Ebuild name:

kde-apps/dolphin-plugins-mercurial-25.12.1

Description

Dolphin plugin for Mercurial integration

Added to portage

2026-01-08

dolphin-plugins-mountiso - 25.12.1
Ebuild name:

app-cdr/dolphin-plugins-mountiso-25.12.1

Description

Dolphin plugin for ISO loopback device mounting

Added to portage

2026-01-08

dolphin-plugins-subversion - 25.12.1
Ebuild name:

kde-apps/dolphin-plugins-subversion-25.12.1

Description

Dolphin plugin for Subversion integration

Added to portage

2026-01-08

dovecot - 2.4.2-r1
Ebuild name:

net-mail/dovecot-2.4.2-r1

Description

An IMAP and POP3 server written with security primarily in mind

Added to portage

2026-01-08

dragon - 25.12.1
Ebuild name:

kde-apps/dragon-25.12.1

Description

Simple video player

Added to portage

2026-01-08

drumstick - 2.11.0
Ebuild name:

media-sound/drumstick-2.11.0

Description

Qt/C++ wrapper for ALSA sequencer

Added to portage

2026-01-08

egl-wayland2 - 1.0.1_pre20251231
Ebuild name:

gui-libs/egl-wayland2-1.0.1_pre20251231

Description

NVIDIA wayland EGL external platform library, version 2

Added to portage

2026-01-08

elisa - 25.12.1
Ebuild name:

media-sound/elisa-25.12.1

Description

Simple music player by KDE

Added to portage

2026-01-08

eventviews - 25.12.1
Ebuild name:

kde-apps/eventviews-25.12.1

Description

Calendar viewer for KDE PIM

Added to portage

2026-01-08

falkon - 25.12.1
Ebuild name:

www-client/falkon-25.12.1

Description

Cross-platform web browser using QtWebEngine

Added to portage

2026-01-08

fennel - 1.6.1
Ebuild name:

dev-lang/fennel-1.6.1

Description

Lisp-like language that compiles to Lua

Added to portage

2026-01-08

ffmpegthumbs - 25.12.1
Ebuild name:

kde-apps/ffmpegthumbs-25.12.1

Description

FFmpeg based thumbnail generator for video files

Added to portage

2026-01-08

filelight - 25.12.1
Ebuild name:

kde-apps/filelight-25.12.1

Description

Visualise disk usage with interactive map of concentric, segmented rings

Added to portage

2026-01-08

francis - 25.12.1
Ebuild name:

app-misc/francis-25.12.1

Description

Productivity application using the well-known pomodoro technique

Added to portage

2026-01-08

gentoo-kernel - 6.12.64
Ebuild name:

sys-kernel/gentoo-kernel-6.12.64

Description

Linux kernel built with Gentoo patches

Added to portage

2026-01-08

gentoo-kernel - 6.18.4
Ebuild name:

sys-kernel/gentoo-kernel-6.18.4

Description

Linux kernel built with Gentoo patches

Added to portage

2026-01-08

gentoo-kernel-bin - 6.12.64
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.64

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-01-08

gentoo-kernel-bin - 6.18.4
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.4

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-01-08

gentoo-sources - 6.12.64
Ebuild name:

sys-kernel/gentoo-sources-6.12.64

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-01-08

gentoo-sources - 6.18.4
Ebuild name:

sys-kernel/gentoo-sources-6.18.4

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-01-08

gleam - 1.14.0
Ebuild name:

dev-lang/gleam-1.14.0

Description

A friendly language for building type-safe, scalable systems

Added to portage

2026-01-08

gmult - 16.0
Ebuild name:

games-kids/gmult-16.0

Description

Multiplication Puzzle emulates the multiplication game found in Emacs

Added to portage

2026-01-08

granatier - 25.12.1
Ebuild name:

kde-apps/granatier-25.12.1

Description

KDE Bomberman game

Added to portage

2026-01-08

grantlee-editor - 25.12.1
Ebuild name:

kde-apps/grantlee-editor-25.12.1

Description

Utilities and tools to manage themes in KDE PIM applications

Added to portage

2026-01-08

grantleetheme - 25.12.1
Ebuild name:

kde-apps/grantleetheme-25.12.1

Description

Library for Grantlee plugins

Added to portage

2026-01-08

gwenview - 25.12.1
Ebuild name:

kde-apps/gwenview-25.12.1

Description

Image viewer by KDE

Added to portage

2026-01-08

haruna - 1.7.0
Ebuild name:

media-video/haruna-1.7.0

Description

Video player built with Qt/QML and libmpv

Added to portage

2026-01-08

importmap-rails - 2.2.3
Ebuild name:

dev-ruby/importmap-rails-2.2.3

Description

Use ESM with importmap to manage JavaScript in Rails

Added to portage

2026-01-08

incidenceeditor - 25.12.1
Ebuild name:

kde-apps/incidenceeditor-25.12.1

Description

Incidence editor for KOrganizer

Added to portage

2026-01-08

isoimagewriter - 25.12.1
Ebuild name:

app-cdr/isoimagewriter-25.12.1

Description

Write hybrid ISO files onto a USB disk

Added to portage

2026-01-08

jsonschema - 4.26.0
Ebuild name:

dev-python/jsonschema-4.26.0

Description

An implementation of JSON-Schema validation for Python

Added to portage

2026-01-08

juk - 25.12.1
Ebuild name:

kde-apps/juk-25.12.1

Description

Jukebox and music manager by KDE

Added to portage

2026-01-08

just - 1.46.0
Ebuild name:

dev-build/just-1.46.0

Description

Just a command runner (with syntax inspired by 'make')

Added to portage

2026-01-08

k3b - 25.12.1
Ebuild name:

kde-apps/k3b-25.12.1

Description

Full-featured burning and ripping application based on KDE Frameworks

Added to portage

2026-01-08

kaccounts-integration - 25.12.1
Ebuild name:

kde-apps/kaccounts-integration-25.12.1

Description

Administer web accounts for the sites and services across th

Added to portage

2026-01-08

kaccounts-providers - 25.12.1
Ebuild name:

kde-apps/kaccounts-providers-25.12.1

Description

KDE accounts providers

Added to portage

2026-01-08

kaddressbook - 25.12.1
Ebuild name:

kde-apps/kaddressbook-25.12.1

Description

Address book application based on KDE Frameworks

Added to portage

2026-01-08

kajongg - 25.12.1
Ebuild name:

kde-apps/kajongg-25.12.1

Description

Classical Mah Jongg for four players

Added to portage

2026-01-08

kalarm - 25.12.1
Ebuild name:

kde-apps/kalarm-25.12.1

Description

Application to manage alarms and other timer based alerts for the desktop

Added to portage

2026-01-08

kalgebra - 25.12.1
Ebuild name:

kde-apps/kalgebra-25.12.1

Description

MathML-based 2D and 3D graph calculator by KDE

Added to portage

2026-01-08

kalzium - 25.12.1
Ebuild name:

kde-apps/kalzium-25.12.1

Description

Periodic table of the elements

Added to portage

2026-01-08

kamera - 25.12.1
Ebuild name:

kde-apps/kamera-25.12.1

Description

Plasma integration for gphoto2 cameras

Added to portage

2026-01-08

kamoso - 25.12.1
Ebuild name:

kde-apps/kamoso-25.12.1

Description

Application to take pictures and videos from your webcam

Added to portage

2026-01-08

kanagram - 25.12.1
Ebuild name:

kde-apps/kanagram-25.12.1

Description

Game based on anagrams of words

Added to portage

2026-01-08

kapman - 25.12.1
Ebuild name:

kde-apps/kapman-25.12.1

Description

Pac-Man clone by KDE

Added to portage

2026-01-08

kapptemplate - 25.12.1
Ebuild name:

kde-apps/kapptemplate-25.12.1

Description

Shell script to create the necessary framework to develop KDE applica

Added to portage

2026-01-08

kasts - 25.12.1
Ebuild name:

media-sound/kasts-25.12.1

Description

Convergent podcast application for desktop and mobile

Added to portage

2026-01-08

kate - 25.12.1
Ebuild name:

kde-apps/kate-25.12.1

Description

Multi-document editor with network transparency, Plasma integration and more

Added to portage

2026-01-08

kate-addons - 25.12.1
Ebuild name:

kde-apps/kate-addons-25.12.1

Description

Addons used by Kate

Added to portage

2026-01-08

kate-common - 25.12.1
Ebuild name:

kde-apps/kate-common-25.12.1

Description

Added to portage

2026-01-08

kate-lib - 25.12.1
Ebuild name:

kde-apps/kate-lib-25.12.1

Description

Shared library used by Kate/Kwrite and Kate-Addons

Added to portage

2026-01-08

katomic - 25.12.1
Ebuild name:

kde-apps/katomic-25.12.1

Description

KDE Atomic Entertainment Game

Added to portage

2026-01-08

kbackup - 25.12.1
Ebuild name:

kde-apps/kbackup-25.12.1

Description

Program that lets you back up any directories or files

Added to portage

2026-01-08

kblackbox - 25.12.1
Ebuild name:

kde-apps/kblackbox-25.12.1

Description

Game of hide and seek played on a grid of boxes

Added to portage

2026-01-08

kblocks - 25.12.1
Ebuild name:

kde-apps/kblocks-25.12.1

Description

Single-player Tetris-like KDE game

Added to portage

2026-01-08

kbounce - 25.12.1
Ebuild name:

kde-apps/kbounce-25.12.1

Description

KDE Bounce Ball Game

Added to portage

2026-01-08

kbreakout - 25.12.1
Ebuild name:

kde-apps/kbreakout-25.12.1

Description

Breakout-like game by KDE

Added to portage

2026-01-08

kbruch - 25.12.1
Ebuild name:

kde-apps/kbruch-25.12.1

Description

Educational application to learn calculating with fractions

Added to portage

2026-01-08

kcachegrind - 25.12.1
Ebuild name:

kde-apps/kcachegrind-25.12.1

Description

Frontend for Cachegrind by KDE

Added to portage

2026-01-08

kcalc - 25.12.1
Ebuild name:

kde-apps/kcalc-25.12.1

Description

KDE calculator

Added to portage

2026-01-08

kcalutils - 25.12.1
Ebuild name:

kde-apps/kcalutils-25.12.1

Description

Library providing utility functions for the handling of calendar data

Added to portage

2026-01-08

kcharselect - 25.12.1
Ebuild name:

kde-apps/kcharselect-25.12.1

Description

KDE character selection utility

Added to portage

2026-01-08

kclock - 25.12.1
Ebuild name:

kde-misc/kclock-25.12.1

Description

Convergent clock application for Plasma

Added to portage

2026-01-08

kcolorchooser - 25.12.1
Ebuild name:

kde-apps/kcolorchooser-25.12.1

Description

KDE color selector/editor

Added to portage

2026-01-08

kcron - 25.12.1
Ebuild name:

kde-apps/kcron-25.12.1

Description

KDE Task Scheduler

Added to portage

2026-01-08

kde-apps-meta - 25.12.1
Ebuild name:

kde-apps/kde-apps-meta-25.12.1

Description

Meta package for the KDE Release Service collection

Added to portage

2026-01-08

kde-dev-scripts - 25.12.1
Ebuild name:

kde-apps/kde-dev-scripts-25.12.1

Description

KDE Development Scripts

Added to portage

2026-01-08

kde-dev-utils - 25.12.1
Ebuild name:

kde-apps/kde-dev-utils-25.12.1

Description

KDE Development Utilities

Added to portage

2026-01-08

kdeaccessibility-meta - 25.12.1
Ebuild name:

kde-apps/kdeaccessibility-meta-25.12.1

Description

kdeaccessibility - merge this to pull in all kdeaccessiblity

Added to portage

2026-01-08

kdeadmin-meta - 25.12.1
Ebuild name:

kde-apps/kdeadmin-meta-25.12.1

Description

KDE administration tools - merge this to pull in all kdeadmin-derive

Added to portage

2026-01-08

kdebugsettings - 25.12.1
Ebuild name:

kde-apps/kdebugsettings-25.12.1

Description

Application to enable/disable qCDebug

Added to portage

2026-01-08

kdeconnect - 25.12.1
Ebuild name:

kde-misc/kdeconnect-25.12.1

Description

Adds communication between KDE Plasma and your smartphone

Added to portage

2026-01-08

kdecore-meta - 25.12.1
Ebuild name:

kde-apps/kdecore-meta-25.12.1

Description

kdecore - merge this to pull in the most basic applications

Added to portage

2026-01-08

kdeedu-data - 25.12.1
Ebuild name:

kde-apps/kdeedu-data-25.12.1

Description

Shared icons, artwork and data files for educational applications

Added to portage

2026-01-08

kdeedu-meta - 25.12.1
Ebuild name:

kde-apps/kdeedu-meta-25.12.1

Description

KDE educational apps - merge this to pull in all kdeedu-derived packag

Added to portage

2026-01-08

kdegames-meta - 25.12.1
Ebuild name:

kde-apps/kdegames-meta-25.12.1

Description

kdegames - merge this to pull in all kdegames-derived packages

Added to portage

2026-01-08

kdegraphics-meta - 25.12.1
Ebuild name:

kde-apps/kdegraphics-meta-25.12.1

Description

kdegraphics - merge this to pull in all kdegraphics-derived packa

Added to portage

2026-01-08

kdegraphics-mobipocket - 25.12.1
Ebuild name:

kde-apps/kdegraphics-mobipocket-25.12.1

Description

Library to support mobipocket ebooks

Added to portage

2026-01-08

kdemultimedia-meta - 25.12.1
Ebuild name:

kde-apps/kdemultimedia-meta-25.12.1

Description

kdemultimedia - merge this to pull in all kdemultimedia-derived

Added to portage

2026-01-08

kdenetwork-filesharing - 25.12.1
Ebuild name:

kde-apps/kdenetwork-filesharing-25.12.1

Description

Samba filesharing plugin for file properties

Added to portage

2026-01-08

kdenetwork-meta - 25.12.1
Ebuild name:

kde-apps/kdenetwork-meta-25.12.1

Description

kdenetwork - merge this to pull in all kdenetwork-derived packages

Added to portage

2026-01-08

kdenlive - 25.12.1
Ebuild name:

kde-apps/kdenlive-25.12.1

Description

Non-linear video editing suite by KDE

Added to portage

2026-01-08

kdepim-addons - 25.12.1
Ebuild name:

kde-apps/kdepim-addons-25.12.1

Description

Plugins for KDE Personal Information Management Suite

Added to portage

2026-01-08

kdepim-meta - 25.12.1
Ebuild name:

kde-apps/kdepim-meta-25.12.1

Description

KDE PIM - merge this to pull in all kdepim-derived packages

Added to portage

2026-01-08

kdepim-runtime - 25.12.1
Ebuild name:

kde-apps/kdepim-runtime-25.12.1

Description

Runtime plugin collection to extend the functionality of KDE PIM

Added to portage

2026-01-08

kdesdk-meta - 25.12.1
Ebuild name:

kde-apps/kdesdk-meta-25.12.1

Description

KDE SDK - merge this to pull in all kdesdk-derived packages

Added to portage

2026-01-08

kdesdk-thumbnailers - 25.12.1
Ebuild name:

kde-apps/kdesdk-thumbnailers-25.12.1

Description

Thumbnail generator for PO files

Added to portage

2026-01-08

kdeutils-meta - 25.12.1
Ebuild name:

kde-apps/kdeutils-meta-25.12.1

Description

kdeutils - merge this to pull in all kdeutils-derived packages

Added to portage

2026-01-08

kdevelop - 25.12.1
Ebuild name:

dev-util/kdevelop-25.12.1

Description

Integrated Development Environment, supporting KF6/Qt, C/C++ and much mor

Added to portage

2026-01-08

kdevelop-php - 25.12.1
Ebuild name:

dev-util/kdevelop-php-25.12.1

Description

PHP plugin for KDevelop

Added to portage

2026-01-08

kdevelop-python - 25.12.1
Ebuild name:

dev-util/kdevelop-python-25.12.1

Description

Python plugin for KDevelop

Added to portage

2026-01-08

kdf - 25.12.1
Ebuild name:

kde-apps/kdf-25.12.1

Description

KDE free disk space utility

Added to portage

2026-01-08

kdialog - 25.12.1
Ebuild name:

kde-apps/kdialog-25.12.1

Description

Can be used to show nice dialog boxes from shell scripts

Added to portage

2026-01-08

kdiamond - 25.12.1
Ebuild name:

kde-apps/kdiamond-25.12.1

Description

Single player three-in-a-row game

Added to portage

2026-01-08

keditbookmarks - 25.12.1
Ebuild name:

kde-apps/keditbookmarks-25.12.1

Description

Bookmarks editor based on KDE Frameworks

Added to portage

2026-01-08

keysmith - 25.12.1
Ebuild name:

app-crypt/keysmith-25.12.1

Description

OTP client for Plasma Mobile and Desktop

Added to portage

2026-01-08

kfind - 25.12.1
Ebuild name:

kde-apps/kfind-25.12.1

Description

File finder utility based on KDE Frameworks

Added to portage

2026-01-08

kfourinline - 25.12.1
Ebuild name:

kde-apps/kfourinline-25.12.1

Description

KDE four-in-a-row game

Added to portage

2026-01-08

kgeography - 25.12.1
Ebuild name:

kde-apps/kgeography-25.12.1

Description

Geography learning tool

Added to portage

2026-01-08

kget - 25.12.1
Ebuild name:

kde-apps/kget-25.12.1

Description

Advanced download manager by KDE

Added to portage

2026-01-08

kgoldrunner - 25.12.1
Ebuild name:

kde-apps/kgoldrunner-25.12.1

Description

Game of action and puzzle solving by KDE

Added to portage

2026-01-08

kgpg - 25.12.1
Ebuild name:

kde-apps/kgpg-25.12.1

Description

Frontend for GnuPG, a powerful encryption utility by KDE

Added to portage

2026-01-08

kgraphviewer - 25.12.1
Ebuild name:

media-gfx/kgraphviewer-25.12.1

Description

Graphviz dot graph file viewer

Added to portage

2026-01-08

khangman - 25.12.1
Ebuild name:

kde-apps/khangman-25.12.1

Description

Classical hangman game by KDE

Added to portage

2026-01-08

khelpcenter - 25.12.1
Ebuild name:

kde-apps/khelpcenter-25.12.1

Description

Application to read documentation for KDE Plasma, Applications, Utilit

Added to portage

2026-01-08

kidentitymanagement - 25.12.1
Ebuild name:

kde-apps/kidentitymanagement-25.12.1

Description

Library for managing identitites

Added to portage

2026-01-08

kig - 25.12.1
Ebuild name:

kde-apps/kig-25.12.1

Description

KDE Interactive Geometry tool

Added to portage

2026-01-08

kigo - 25.12.1
Ebuild name:

kde-apps/kigo-25.12.1

Description

Go game by KDE

Added to portage

2026-01-08

killbots - 25.12.1
Ebuild name:

kde-apps/killbots-25.12.1

Description

Kill the bots or they kill you

Added to portage

2026-01-08

kimagemapeditor - 25.12.1
Ebuild name:

kde-apps/kimagemapeditor-25.12.1

Description

Generator of HTML image maps

Added to portage

2026-01-08

kimap - 25.12.1
Ebuild name:

kde-apps/kimap-25.12.1

Description

Library for interacting with IMAP servers

Added to portage

2026-01-08

kio-admin - 25.12.1
Ebuild name:

app-admin/kio-admin-25.12.1

Description

Manage files as administrator using the admin KIO protocol

Added to portage

2026-01-08

kio-blender-thumbnailer - 25.12.1
Ebuild name:

media-gfx/kio-blender-thumbnailer-25.12.1

Description

KIO thumbnail generator for Blender files

Added to portage

2026-01-08

kio-extras - 25.12.1
Ebuild name:

kde-apps/kio-extras-25.12.1

Description

KIO plugins present a filesystem-like view of arbitrary data

Added to portage

2026-01-08

kio-gdrive - 25.12.1
Ebuild name:

kde-misc/kio-gdrive-25.12.1

Description

KIO worker for Google Drive service

Added to portage

2026-01-08

kio-gdrive-common - 25.12.1
Ebuild name:

kde-misc/kio-gdrive-common-25.12.1

Description

Added to portage

2026-01-08

kio-mobi-thumbnailer - 25.12.1
Ebuild name:

media-gfx/kio-mobi-thumbnailer-25.12.1

Description

KIO thumbnail generator for Mobipocket files

Added to portage

2026-01-08

kio-perldoc - 25.12.1
Ebuild name:

dev-util/kio-perldoc-25.12.1

Description

KIO worker interface to browse Perl documentation

Added to portage

2026-01-08

kio-ps-thumbnailer - 25.12.1
Ebuild name:

media-gfx/kio-ps-thumbnailer-25.12.1

Description

KIO thumbnail generator for DVI, EPS, PDF and PS files

Added to portage

2026-01-08

kio-raw-thumbnailer - 25.12.1
Ebuild name:

media-gfx/kio-raw-thumbnailer-25.12.1

Description

KIO thumbnail generator for RAW files

Added to portage

2026-01-08

kio-zeroconf - 25.12.1
Ebuild name:

net-misc/kio-zeroconf-25.12.1

Description

KIO worker to discover file systems by DNS-SD (DNS Service Discovery)

Added to portage

2026-01-08

kirigami-addons - 1.11.0
Ebuild name:

dev-libs/kirigami-addons-1.11.0

Description

Visual end user components for Kirigami-based applications

Added to portage

2026-01-08

kiriki - 25.12.1
Ebuild name:

kde-apps/kiriki-25.12.1

Description

An addictive and fun dice game

Added to portage

2026-01-08

kiten - 25.12.1
Ebuild name:

kde-apps/kiten-25.12.1

Description

KDE Japanese dictionary and reference

Added to portage

2026-01-08

kitinerary - 25.12.1
Ebuild name:

kde-apps/kitinerary-25.12.1

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2026-01-08

kjumpingcube - 25.12.1
Ebuild name:

kde-apps/kjumpingcube-25.12.1

Description

Tactical one or two player game

Added to portage

2026-01-08

kldap - 25.12.1
Ebuild name:

kde-apps/kldap-25.12.1

Description

Library for interacting with LDAP servers

Added to portage

2026-01-08

kleopatra - 25.12.1
Ebuild name:

kde-apps/kleopatra-25.12.1

Description

Certificate manager and GUI for OpenPGP and CMS cryptography

Added to portage

2026-01-08

klettres - 25.12.1
Ebuild name:

kde-apps/klettres-25.12.1

Description

Alphabet learning application

Added to portage

2026-01-08

klickety - 25.12.1
Ebuild name:

kde-apps/klickety-25.12.1

Description

An adaptation of the Clickomania game

Added to portage

2026-01-08

klines - 25.12.1
Ebuild name:

kde-apps/klines-25.12.1

Description

A little KDE game about balls and how to get rid of them

Added to portage

2026-01-08

kmag - 25.12.1
Ebuild name:

kde-apps/kmag-25.12.1

Description

KDE screen magnifier

Added to portage

2026-01-08

kmahjongg - 25.12.1
Ebuild name:

kde-apps/kmahjongg-25.12.1

Description

A tile matching game for one or two players

Added to portage

2026-01-08

kmail - 25.12.1
Ebuild name:

kde-apps/kmail-25.12.1

Description

Email client, supporting POP3 and IMAP mailboxes

Added to portage

2026-01-08

kmail-account-wizard - 25.12.1
Ebuild name:

kde-apps/kmail-account-wizard-25.12.1

Description

Assistant for KMail accounts configuration

Added to portage

2026-01-08

kmailtransport - 25.12.1
Ebuild name:

kde-apps/kmailtransport-25.12.1

Description

Mail transport service

Added to portage

2026-01-08

kmbox - 25.12.1
Ebuild name:

kde-apps/kmbox-25.12.1

Description

Library for accessing MBox format mail storages

Added to portage

2026-01-08

kmime - 25.12.1
Ebuild name:

kde-apps/kmime-25.12.1

Description

Libary for handling mail messages and newsgroup articles

Added to portage

2026-01-08

kmines - 25.12.1
Ebuild name:

kde-apps/kmines-25.12.1

Description

Classic mine sweeper game

Added to portage

2026-01-08

kmix - 25.12.1
Ebuild name:

kde-apps/kmix-25.12.1

Description

Volume control gui based on KDE Frameworks

Added to portage

2026-01-08

kmousetool - 25.12.1
Ebuild name:

kde-apps/kmousetool-25.12.1

Description

KDE program that clicks the mouse for you

Added to portage

2026-01-08

kmouth - 25.12.1
Ebuild name:

kde-apps/kmouth-25.12.1

Description

Text-to-speech synthesizer front end

Added to portage

2026-01-08

kmplot - 25.12.1
Ebuild name:

kde-apps/kmplot-25.12.1

Description

Mathematical function plotter

Added to portage

2026-01-08

knavalbattle - 25.12.1
Ebuild name:

kde-apps/knavalbattle-25.12.1

Description

Battleship clone by KDE

Added to portage

2026-01-08

knetwalk - 25.12.1
Ebuild name:

kde-apps/knetwalk-25.12.1

Description

KDE version of the popular NetWalk game for system administrators

Added to portage

2026-01-08

knights - 25.12.1
Ebuild name:

kde-apps/knights-25.12.1

Description

Simple chess board based on KDE Frameworks

Added to portage

2026-01-08

kolf - 25.12.1
Ebuild name:

kde-apps/kolf-25.12.1

Description

Minigolf game by KDE

Added to portage

2026-01-08

kollision - 25.12.1
Ebuild name:

kde-apps/kollision-25.12.1

Description

Simple ball dodging game

Added to portage

2026-01-08

kolourpaint - 25.12.1
Ebuild name:

kde-apps/kolourpaint-25.12.1

Description

Paint Program by KDE

Added to portage

2026-01-08

kompare - 25.12.1
Ebuild name:

kde-apps/kompare-25.12.1

Description

Graphical File Differences Tool

Added to portage

2026-01-08

konqueror - 25.12.1
Ebuild name:

kde-apps/konqueror-25.12.1

Description

Web browser and file manager based on KDE Frameworks

Added to portage

2026-01-08

konquest - 25.12.1
Ebuild name:

kde-apps/konquest-25.12.1

Description

Galactic Strategy KDE Game

Added to portage

2026-01-08

konsole - 25.12.1
Ebuild name:

kde-apps/konsole-25.12.1

Description

KDE's terminal emulator

Added to portage

2026-01-08

konsolekalendar - 25.12.1
Ebuild name:

kde-apps/konsolekalendar-25.12.1

Description

Command line interface to KDE calendars

Added to portage

2026-01-08

kontact - 25.12.1
Ebuild name:

kde-apps/kontact-25.12.1

Description

Container application to unify several major PIM applications within one

Added to portage

2026-01-08

kontactinterface - 25.12.1
Ebuild name:

kde-apps/kontactinterface-25.12.1

Description

Library for embedding KParts in a Kontact component

Added to portage

2026-01-08

kontrast - 25.12.1
Ebuild name:

app-accessibility/kontrast-25.12.1

Description

Tool to check contrast for colors to verify they are correctly a

Added to portage

2026-01-08

konversation - 25.12.1
Ebuild name:

net-irc/konversation-25.12.1

Description

User friendly IRC Client

Added to portage

2026-01-08

kopeninghours - 25.12.1
Ebuild name:

dev-libs/kopeninghours-25.12.1

Description

Library for parsing and evaluating OSM opening hours expressions

Added to portage

2026-01-08

korganizer - 25.12.1
Ebuild name:

kde-apps/korganizer-25.12.1

Description

Organizational assistant, providing calendars and other similar functio

Added to portage

2026-01-08

kosmindoormap - 25.12.1
Ebuild name:

dev-libs/kosmindoormap-25.12.1

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2026-01-08

kpat - 25.12.1
Ebuild name:

kde-apps/kpat-25.12.1

Description

KDE patience game

Added to portage

2026-01-08

kpimtextedit - 25.12.1
Ebuild name:

kde-apps/kpimtextedit-25.12.1

Description

Extended text editor for PIM applications

Added to portage

2026-01-08

kpkpass - 25.12.1
Ebuild name:

kde-apps/kpkpass-25.12.1

Description

Library to deal with Apple Wallet pass files

Added to portage

2026-01-08

kpmcore - 25.12.1
Ebuild name:

sys-libs/kpmcore-25.12.1

Description

Library for managing partitions

Added to portage

2026-01-08

kpublictransport - 25.12.1
Ebuild name:

dev-libs/kpublictransport-25.12.1

Description

Library for accessing public transport timetables and other infor

Added to portage

2026-01-08

kqtquickcharts - 25.12.1
Ebuild name:

kde-apps/kqtquickcharts-25.12.1

Description

Qt Quick plugin for beautiful and interactive charts

Added to portage

2026-01-08

krdc - 25.12.1
Ebuild name:

kde-apps/krdc-25.12.1

Description

Remote desktop connection (RDP and VNC) client

Added to portage

2026-01-08

krecorder - 25.12.1
Ebuild name:

media-sound/krecorder-25.12.1

Description

Convergent audio recording application for Plasma

Added to portage

2026-01-08

kreversi - 25.12.1
Ebuild name:

kde-apps/kreversi-25.12.1

Description

Board game by KDE

Added to portage

2026-01-08

krfb - 25.12.1
Ebuild name:

kde-apps/krfb-25.12.1

Description

VNC-compatible server to share Plasma desktops

Added to portage

2026-01-08

kruler - 25.12.1
Ebuild name:

kde-apps/kruler-25.12.1

Description

Screen ruler for Plasma

Added to portage

2026-01-08

ksanecore - 25.12.1
Ebuild name:

media-libs/ksanecore-25.12.1

Description

Qt-based interface for SANE library to control scanner hardware

Added to portage

2026-01-08

kshisen - 25.12.1
Ebuild name:

kde-apps/kshisen-25.12.1

Description

Solitaire-like game played using the standard set of Mahjong tiles

Added to portage

2026-01-08

ksirk - 25.12.1
Ebuild name:

kde-apps/ksirk-25.12.1

Description

Port of the board game Risk

Added to portage

2026-01-08

ksmtp - 25.12.1
Ebuild name:

kde-apps/ksmtp-25.12.1

Description

Job-based library to send email through an SMTP server

Added to portage

2026-01-08

ksnakeduel - 25.12.1
Ebuild name:

kde-apps/ksnakeduel-25.12.1

Description

KDE Tron game

Added to portage

2026-01-08

kspaceduel - 25.12.1
Ebuild name:

kde-apps/kspaceduel-25.12.1

Description

Space Game by KDE

Added to portage

2026-01-08

ksquares - 25.12.1
Ebuild name:

kde-apps/ksquares-25.12.1

Description

KDE clone of the game squares

Added to portage

2026-01-08

ksudoku - 25.12.1
Ebuild name:

kde-apps/ksudoku-25.12.1

Description

Logic-based symbol placement puzzle by KDE

Added to portage

2026-01-08

ksystemlog - 25.12.1
Ebuild name:

kde-apps/ksystemlog-25.12.1

Description

System log viewer by KDE

Added to portage

2026-01-08

kteatime - 25.12.1
Ebuild name:

kde-apps/kteatime-25.12.1

Description

KDE timer for making a fine cup of tea

Added to portage

2026-01-08

ktimer - 25.12.1
Ebuild name:

kde-apps/ktimer-25.12.1

Description

Little tool to execute programs after some time

Added to portage

2026-01-08

ktorrent - 25.12.1
Ebuild name:

net-p2p/ktorrent-25.12.1

Description

Powerful BitTorrent client based on KDE Frameworks

Added to portage

2026-01-08

ktouch - 25.12.1
Ebuild name:

kde-apps/ktouch-25.12.1

Description

Program that helps to learn and practice touch typing

Added to portage

2026-01-08

ktuberling - 25.12.1
Ebuild name:

kde-apps/ktuberling-25.12.1

Description

Potato game for kids by KDE

Added to portage

2026-01-08

kturtle - 25.12.1
Ebuild name:

kde-apps/kturtle-25.12.1

Description

Educational programming environment using the Logo programming language

Added to portage

2026-01-08

kubrick - 25.12.1
Ebuild name:

kde-apps/kubrick-25.12.1

Description

Game based on the

Added to portage

2026-01-08

kwalletmanager - 25.12.1
Ebuild name:

kde-apps/kwalletmanager-25.12.1

Description

Tool to manage the passwords on your system using KDE Wallet

Added to portage

2026-01-08

kwave - 25.12.1
Ebuild name:

kde-apps/kwave-25.12.1

Description

Sound editor built on KDE Frameworks that can edit many types of audio files

Added to portage

2026-01-08

kweather - 25.12.1
Ebuild name:

kde-misc/kweather-25.12.1

Description

Weather forecast application for Plasma with flat and dynamic/animated vi

Added to portage

2026-01-08

kweathercore - 25.12.1
Ebuild name:

dev-libs/kweathercore-25.12.1

Description

Library for retrieval of weather information including forecasts and

Added to portage

2026-01-08

kwordquiz - 25.12.1
Ebuild name:

kde-apps/kwordquiz-25.12.1

Description

Powerful flashcard and vocabulary learning program

Added to portage

2026-01-08

kwrite - 25.12.1
Ebuild name:

kde-apps/kwrite-25.12.1

Description

Simple text editor based on KDE Frameworks

Added to portage

2026-01-08

lfe - 2.2.0-r1
Ebuild name:

dev-lang/lfe-2.2.0-r1

Description

Lisp-flavoured Erlang, a lisp syntax front-end to the Erlang compiler

Added to portage

2026-01-08

libgravatar - 25.12.1
Ebuild name:

kde-apps/libgravatar-25.12.1

Description

Library for gravatar integration

Added to portage

2026-01-08

libkcddb - 25.12.1
Ebuild name:

kde-apps/libkcddb-25.12.1

Description

KDE library for CDDB

Added to portage

2026-01-08

libkcddb-common - 25.12.1
Ebuild name:

kde-apps/libkcddb-common-25.12.1

Description

Added to portage

2026-01-08

libkdcraw - 25.12.1
Ebuild name:

kde-apps/libkdcraw-25.12.1

Description

Digital camera raw image library wrapper

Added to portage

2026-01-08

libkdegames - 25.12.1
Ebuild name:

kde-apps/libkdegames-25.12.1

Description

Base library common to many KDE games

Added to portage

2026-01-08

libkdepim - 25.12.1
Ebuild name:

kde-apps/libkdepim-25.12.1

Description

Common PIM libraries

Added to portage

2026-01-08

libkeduvocdocument - 25.12.1
Ebuild name:

kde-apps/libkeduvocdocument-25.12.1

Description

Library for reading/writing KVTML

Added to portage

2026-01-08

libkexiv2 - 25.12.1
Ebuild name:

kde-apps/libkexiv2-25.12.1

Description

Wrapper around exiv2 library

Added to portage

2026-01-08

libkgapi - 25.12.1
Ebuild name:

kde-apps/libkgapi-25.12.1

Description

Library for accessing Google calendar and contact resources

Added to portage

2026-01-08

libkleo - 25.12.1
Ebuild name:

kde-apps/libkleo-25.12.1

Description

Library for encryption handling

Added to portage

2026-01-08

libkmahjongg - 25.12.1
Ebuild name:

kde-apps/libkmahjongg-25.12.1

Description

Mahjongg library based on Qt/KDE Frameworks

Added to portage

2026-01-08

libkomparediff2 - 25.12.1
Ebuild name:

kde-apps/libkomparediff2-25.12.1

Description

Library to compare files and strings

Added to portage

2026-01-08

libksane - 25.12.1
Ebuild name:

kde-apps/libksane-25.12.1

Description

SANE Library interface based on KDE Frameworks

Added to portage

2026-01-08

libksane-common - 25.12.1
Ebuild name:

kde-apps/libksane-common-25.12.1

Description

Added to portage

2026-01-08

libksieve - 25.12.1
Ebuild name:

kde-apps/libksieve-25.12.1

Description

Common PIM libraries

Added to portage

2026-01-08

libktnef - 25.12.1
Ebuild name:

kde-apps/libktnef-25.12.1

Description

Library for handling TNEF data

Added to portage

2026-01-08

libktorrent - 25.12.1
Ebuild name:

net-libs/libktorrent-25.12.1

Description

BitTorrent library based on KDE Frameworks

Added to portage

2026-01-08

limesuite - 23.11.0_p20250714
Ebuild name:

net-wireless/limesuite-23.11.0_p20250714

Description

Driver and GUI for LMS7002M-based SDR platforms

Added to portage

2026-01-08

linode-metadata - 0.3.3
Ebuild name:

dev-python/linode-metadata-0.3.3

Description

Python bindings for the Linode Metadata Service

Added to portage

2026-01-08

lokalize - 25.12.1
Ebuild name:

kde-apps/lokalize-25.12.1

Description

Localization tool for KDE software and other free and open source softwar

Added to portage

2026-01-08

lskat - 25.12.1
Ebuild name:

kde-apps/lskat-25.12.1

Description

Skat game by KDE

Added to portage

2026-01-08

mailcommon - 25.12.1
Ebuild name:

kde-apps/mailcommon-25.12.1

Description

Common mail library

Added to portage

2026-01-08

mailimporter - 25.12.1
Ebuild name:

kde-apps/mailimporter-25.12.1

Description

Library to import mail from various sources

Added to portage

2026-01-08

marble - 25.12.1
Ebuild name:

kde-apps/marble-25.12.1

Description

Virtual Globe and World Atlas to learn more about Earth

Added to portage

2026-01-08

markdownpart - 25.12.1
Ebuild name:

kde-misc/markdownpart-25.12.1

Description

Markdown viewer KParts plugin based on QTextDocument

Added to portage

2026-01-08

massif-visualizer - 25.12.1
Ebuild name:

dev-util/massif-visualizer-25.12.1

Description

Tool visualising massif data

Added to portage

2026-01-08

maturin - 1.11.3
Ebuild name:

dev-util/maturin-1.11.3

Description

Build and publish crates with pyo3, rust-cpython and cffi bindings

Added to portage

2026-01-08

maturin - 1.11.4
Ebuild name:

dev-util/maturin-1.11.4

Description

Build and publish crates with pyo3, rust-cpython and cffi bindings

Added to portage

2026-01-08

mbox-importer - 25.12.1
Ebuild name:

kde-apps/mbox-importer-25.12.1

Description

Import mbox email archives from various sources into Akonadi

Added to portage

2026-01-08

merkuro - 25.12.1
Ebuild name:

app-office/merkuro-25.12.1

Description

Calendar application using Akonadi

Added to portage

2026-01-08

messagelib - 25.12.1
Ebuild name:

kde-apps/messagelib-25.12.1

Description

Libraries for messaging functions

Added to portage

2026-01-08

mimetreeparser - 25.12.1
Ebuild name:

kde-apps/mimetreeparser-25.12.1

Description

Libraries for messaging functions

Added to portage

2026-01-08

minuet - 25.12.1
Ebuild name:

kde-apps/minuet-25.12.1

Description

Music Education software by KDE

Added to portage

2026-01-08

neochat - 25.12.1
Ebuild name:

net-im/neochat-25.12.1

Description

Client for Matrix, the decentralized communication protocol

Added to portage

2026-01-08

okular - 25.12.1
Ebuild name:

kde-apps/okular-25.12.1

Description

Universal document viewer based on KDE Frameworks

Added to portage

2026-01-08

osm - 1.12
Ebuild name:

app-emacs/osm-1.12

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-08

osm - 1.9
Ebuild name:

app-emacs/osm-1.9

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-08

osm - 2.0
Ebuild name:

app-emacs/osm-2.0

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-08

osm - 9999
Ebuild name:

app-emacs/osm-9999

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-08

outline-magic - 0.9
Ebuild name:

app-emacs/outline-magic-0.9

Description

Outline mode extensions for Emacs

Added to portage

2026-01-08

package-build - 4.0.0
Ebuild name:

app-emacs/package-build-4.0.0

Description

Tools for assembling a package archive

Added to portage

2026-01-08

package-lint - 0.26
Ebuild name:

app-emacs/package-lint-0.26

Description

Linting library for Emacs Lisp package metadata

Added to portage

2026-01-08

palapeli - 25.12.1
Ebuild name:

kde-apps/palapeli-25.12.1

Description

Jigsaw puzzle game by KDE

Added to portage

2026-01-08

parley - 25.12.1
Ebuild name:

kde-apps/parley-25.12.1

Description

Vocabulary trainer to help you memorize things

Added to portage

2026-01-08

partitionmanager - 25.12.1
Ebuild name:

sys-block/partitionmanager-25.12.1

Description

Utility for management of disks, partitions and file systems

Added to portage

2026-01-08

peewee - 3.19.0
Ebuild name:

dev-python/peewee-3.19.0

Description

Small Python ORM

Added to portage

2026-01-08

pekwm - 0.4.1
Ebuild name:

x11-wm/pekwm-0.4.1

Description

A lightweight window manager initially based on aewm++

Added to portage

2026-01-08

picard - 3.0_pre20260107
Ebuild name:

media-sound/picard-3.0_pre20260107

Description

Cross-platform music tagger

Added to portage

2026-01-08

picmi - 25.12.1
Ebuild name:

kde-apps/picmi-25.12.1

Description

Nonogram logic game by KDE

Added to portage

2026-01-08

pim-data-exporter - 25.12.1
Ebuild name:

kde-apps/pim-data-exporter-25.12.1

Description

Assistant to backup and archive PIM data and configuration

Added to portage

2026-01-08

pim-sieve-editor - 25.12.1
Ebuild name:

kde-apps/pim-sieve-editor-25.12.1

Description

Assistant for editing IMAP Sieve filters

Added to portage

2026-01-08

pimcommon - 25.12.1
Ebuild name:

kde-apps/pimcommon-25.12.1

Description

Common PIM libraries

Added to portage

2026-01-08

plotly - 6.5.1
Ebuild name:

dev-python/plotly-6.5.1

Description

Browser-based graphing library for Python

Added to portage

2026-01-08

poppler - 26.01.0
Ebuild name:

app-text/poppler-26.01.0

Description

PDF rendering library based on the xpdf-3.0 code base

Added to portage

2026-01-08

poxml - 25.12.1
Ebuild name:

kde-apps/poxml-25.12.1

Description

KDE utility to translate DocBook XML files using gettext po files

Added to portage

2026-01-08

pram - 16
Ebuild name:

app-portage/pram-16

Description

Tool to ease merging Pull Requests and git patches

Added to portage

2026-01-08

pycxx - 7.2.0
Ebuild name:

dev-python/pycxx-7.2.0

Description

Set of facilities to extend Python with C++

Added to portage

2026-01-08

pymongo - 4.16.0
Ebuild name:

dev-python/pymongo-4.16.0

Description

Python driver for MongoDB

Added to portage

2026-01-08

qrca - 25.12.1
Ebuild name:

media-gfx/qrca-25.12.1

Description

Simple barcode scanner and QR code generator

Added to portage

2026-01-08

rocs - 25.12.1
Ebuild name:

kde-apps/rocs-25.12.1

Description

Interface to work with Graph Theory

Added to portage

2026-01-08

sfftobmp - 3.1.4_p20250813
Ebuild name:

media-gfx/sfftobmp-3.1.4_p20250813

Description

sff to bmp converter

Added to portage

2026-01-08

signon-kwallet-extension - 25.12.1
Ebuild name:

kde-apps/signon-kwallet-extension-25.12.1

Description

KWallet extension for signond

Added to portage

2026-01-08

skanlite - 25.12.1
Ebuild name:

kde-misc/skanlite-25.12.1

Description

Simple image scanning application based on libksane and KDE Frameworks

Added to portage

2026-01-08

skanpage - 25.12.1
Ebuild name:

media-gfx/skanpage-25.12.1

Description

Multi-page scanning application supporting image and pdf files

Added to portage

2026-01-08

skladnik - 25.12.1
Ebuild name:

games-puzzle/skladnik-25.12.1

Description

The Japanese warehouse keeper sokoban game

Added to portage

2026-01-08

spdlog - 1.17.0
Ebuild name:

dev-libs/spdlog-1.17.0

Description

Fast C++ logging library

Added to portage

2026-01-08

step - 25.12.1
Ebuild name:

kde-apps/step-25.12.1

Description

Interactive physics simulator

Added to portage

2026-01-08

svgpart - 25.12.1
Ebuild name:

kde-apps/svgpart-25.12.1

Description

Kpart for viewing SVGs

Added to portage

2026-01-08

sweeper - 25.12.1
Ebuild name:

kde-apps/sweeper-25.12.1

Description

Privacy settings widget to clean unwanted traces on the system

Added to portage

2026-01-08

thumbnailers - 25.12.1
Ebuild name:

kde-apps/thumbnailers-25.12.1

Description

Metapackage for KIO thumbnail generators

Added to portage

2026-01-08

tlp - 1.9.1
Ebuild name:

sys-power/tlp-1.9.1

Description

Optimize laptop battery life

Added to portage

2026-01-08

tokodon - 25.12.1
Ebuild name:

net-im/tokodon-25.12.1

Description

Mastodon client for Plasma and Plasma Mobile

Added to portage

2026-01-08

trimesh - 4.11.0
Ebuild name:

dev-python/trimesh-4.11.0

Description

Python library for loading and using triangular meshes

Added to portage

2026-01-08

umbrello - 25.12.1
Ebuild name:

kde-apps/umbrello-25.12.1

Description

KDE UML Modeller

Added to portage

2026-01-08

upmpdcli - 1.9.10
Ebuild name:

media-sound/upmpdcli-1.9.10

Description

UPnP Media Renderer front-end for MPD, the Music Player Daemon

Added to portage

2026-01-08

urllib3 - 2.6.3
Ebuild name:

dev-python/urllib3-2.6.3

Description

HTTP library with thread-safe connection pooling, file post, and more

Added to portage

2026-01-08

utidylib - 1.0.0
Ebuild name:

dev-python/utidylib-1.0.0

Description

TidyLib Python wrapper

Added to portage

2026-01-08

vanilla-kernel - 6.12.64
Ebuild name:

sys-kernel/vanilla-kernel-6.12.64

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-01-08

vanilla-kernel - 6.18.4
Ebuild name:

sys-kernel/vanilla-kernel-6.18.4

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-01-08

vanilla-sources - 6.12.64
Ebuild name:

sys-kernel/vanilla-sources-6.12.64

Description

Full sources for the Linux kernel

Added to portage

2026-01-08

vanilla-sources - 6.18.4
Ebuild name:

sys-kernel/vanilla-sources-6.18.4

Description

Full sources for the Linux kernel

Added to portage

2026-01-08

virtualenv - 20.36.0
Ebuild name:

dev-python/virtualenv-20.36.0

Description

Virtual Python Environment builder

Added to portage

2026-01-08

xvfbwrapper - 0.2.18
Ebuild name:

dev-python/xvfbwrapper-0.2.18

Description

Python wrapper for running a display inside X virtual framebuffer

Added to portage

2026-01-08

yakuake - 25.12.1
Ebuild name:

kde-apps/yakuake-25.12.1

Description

Quake-style terminal emulator based on konsole

Added to portage

2026-01-08

zanshin - 25.12.1
Ebuild name:

kde-misc/zanshin-25.12.1

Description

Getting things done application by KDE

Added to portage

2026-01-08

zstd-ruby - 2.0.5
Ebuild name:

dev-ruby/zstd-ruby-2.0.5

Description

Ruby binding for zstd (Zstandard - Fast real-time compression algorithm).

Added to portage

2026-01-08

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 61.6 ms